File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11language : php
22
33php :
4- - 7.0
5- - 7.1
6- - 7.2
7- - 7.3
84 - 7.4
95 - 8.0
6+ - 8.1
107
118before_script :
129 - ' composer install --dev --prefer-source'
1310
14- script : php test/test.php
11+ script : vendor/bin/codecept run
Original file line number Diff line number Diff line change 22
33A simple parser to split SQL (and/or DDL) files into individual SQL queries and strip comments.
44
5- [ ![ PHP Version] ( https://img.shields.io/badge/php-7.0 %2B-blue.svg )] ( https://packagist.org/packages/kodus/sql-split )
5+ [ ![ PHP Version] ( https://img.shields.io/badge/php-7.4 %2B-blue.svg )] ( https://packagist.org/packages/kodus/sql-split )
66[ ![ PHP Version] ( https://img.shields.io/badge/php-8.0%2B-blue.svg )] ( https://packagist.org/packages/kodus/sql-split )
7- [ ![ Build Status] ( https://travis-ci.com/kodus/sql-split.svg?branch=master )] ( https://travis-ci.com/kodus/sql-split )
7+ [ ![ PHP Version] ( https://img.shields.io/badge/php-8.1%2B-blue.svg )] ( https://packagist.org/packages/kodus/sql-split )
8+ [ ![ Build Status] ( https://travis-ci.org/kodus/sql-split.svg?branch=master )] ( https://travis-ci.org/kodus/sql-split )
89
910### Install via Composer
1011
Original file line number Diff line number Diff line change 1+ paths :
2+ tests : tests
3+ output : tests/_output
4+ data : tests/_data
5+ support : tests/_support
6+ envs : tests/_envs
7+ actor_suffix : Tester
8+ extensions :
9+ enabled :
10+ - Codeception\Extension\RunFailed
Original file line number Diff line number Diff line change 88 "name" : " Rasmus Schultz" ,
99 "email" : " rasmus@mindplay.dk"
1010 },
11- {
11+ {
1212 "name" : " Thomas Nordahl Pedersen" ,
1313 "email" : " thno@jfmedier.dk"
14- }
14+ }
1515 ],
1616 "require" : {
17- "php" : " ^7.0|^8.0"
18- },
19- "require-dev" : {
20- "mindplay/testies" : " ^0.3.0"
17+ "php" : " >=7.4"
2118 },
2219 "autoload" : {
2320 "psr-4" : {
2421 "Kodus\\ SQL\\ " : " src/"
2522 }
23+ },
24+ "require-dev" : {
25+ "codeception/codeception" : " ^4.2" ,
26+ "codeception/module-asserts" : " ^2.0"
2627 }
2728}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ *
2+ ! .gitignore
Original file line number Diff line number Diff line change 1+ <?php
2+ namespace Helper ;
3+
4+ // here you can define custom actions
5+ // all public methods declared in helper class will be available in $I
6+
7+ class Unit extends \Codeception \Module
8+ {
9+
10+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+
4+ /**
5+ * Inherited Methods
6+ * @method void wantToTest($text)
7+ * @method void wantTo($text)
8+ * @method void execute($callable)
9+ * @method void expectTo($prediction)
10+ * @method void expect($prediction)
11+ * @method void amGoingTo($argumentation)
12+ * @method void am($role)
13+ * @method void lookForwardTo($achieveValue)
14+ * @method void comment($description)
15+ * @method void pause()
16+ *
17+ * @SuppressWarnings(PHPMD)
18+ */
19+ class UnitTester extends \Codeception \Actor
20+ {
21+ use _generated \UnitTesterActions;
22+
23+ /**
24+ * Define custom actions here
25+ */
26+ }
Original file line number Diff line number Diff line change 1+ *
2+ ! .gitignore
You can’t perform that action at this time.
0 commit comments