kiba 2.0.0.rc1 → 3.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +0,0 @@
1
- module DSLExtensions
2
- module SomeExtension
3
- end
4
- end
@@ -1 +0,0 @@
1
- # this does nothing
data/test/test_cli.rb DELETED
@@ -1,21 +0,0 @@
1
- require_relative 'helper'
2
- require 'kiba/cli'
3
-
4
- class TestCli < Kiba::Test
5
- def test_cli_launches
6
- Kiba::Cli.run([fixture('valid.etl')])
7
- end
8
-
9
- def test_cli_reports_filename_and_lineno
10
- exception = assert_raises(NameError) do
11
- Kiba::Cli.run([fixture('bogus.etl')])
12
- end
13
-
14
- assert_match(/uninitialized constant(.*)UnknownThing/, exception.message)
15
- assert_includes exception.backtrace.to_s, 'test/fixtures/bogus.etl:2:in'
16
- end
17
-
18
- def test_namespace_conflict
19
- Kiba::Cli.run([fixture('namespace_conflict.etl')])
20
- end
21
- end