Changes between Initial Version and Version 1 of Installation

Show
Ignore:
Timestamp:
08/16/08 16:48:08 (2 years ago)
Author:
fumanchu (IP: 76.233.10.129)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installation

    v1 v1  
     1= Obtaining Epic = 
     2 
     3Epic does not yet have a stable release candidate. For now, you should use Subversion to checkout the package: 
     4 
     5{{{ 
     6svn co http://svn.epictest.org/trunk/epic epic 
     7}}} 
     8 
     9Epic can be downloaded anywhere on your system (as long as you can {{{\import}}} it from there). 
     10 
     11 
     12= Installing epic.sql = 
     13 
     14Simply execute/import the epic.sql file into the database you'd like to test: 
     15 
     16{{{ 
     17psql mydb 
     18mydb=# \i '~/epic/epic.sql' 
     19CREATE FUNCTION 
     20 assert_test_schema 
     21-------------------- 
     22 t 
     23(1 row) 
     24 
     25DROP FUNCTION 
     26CREATE FUNCTION 
     27CREATE VIEW 
     28CREATE FUNCTION 
     29CREATE FUNCTION 
     30... 
     31}}} 
     32 
     33Then, execute/import any tests you've written: 
     34 
     35{{{ 
     36mydb=# \i '~/test_users.sql' 
     37SET 
     38CREATE FUNCTION 
     39... 
     40}}}