apirunner 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/apirunner.gemspec +1 -1
- data/lib/csv_writer.rb +0 -1
- data/spec/testcase_spec.rb +2 -2
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.3
|
data/apirunner.gemspec
CHANGED
data/lib/csv_writer.rb
CHANGED
@@ -22,7 +22,6 @@ class CsvWriter
|
|
22
22
|
# and empty entries are made for these cases
|
23
23
|
# to be refactored!
|
24
24
|
def append(data)
|
25
|
-
STDERR.puts("appending #{data} to file #{@file}")
|
26
25
|
begin
|
27
26
|
# convert old data to array
|
28
27
|
old_data_array = CSV.read(@file, headers: true, header_converters: :symbol).to_a
|
data/spec/testcase_spec.rb
CHANGED
@@ -19,12 +19,12 @@ describe 'testcase' do
|
|
19
19
|
end
|
20
20
|
it 'should create a certian md5 hash for a certain testcase' do
|
21
21
|
t = Testcase.new(@testcase_hash, nil)
|
22
|
-
t.unique_identifier.should == "
|
22
|
+
t.unique_identifier.should == "03819e4c7c"
|
23
23
|
end
|
24
24
|
it 'should create a different md5 hash for a the same testcase with minimum changes' do
|
25
25
|
testcase_hash2 = @testcase_hash.merge({"name" => "Create new User with different hash this time"})
|
26
26
|
t = Testcase.new(testcase_hash2, nil)
|
27
|
-
t.unique_identifier.should_not == "
|
27
|
+
t.unique_identifier.should_not == "03819e4c7c"
|
28
28
|
end
|
29
29
|
it 'should return a string with length 10' do
|
30
30
|
t = Testcase.new(@testcase_hash, nil)
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 4
|
8
|
-
-
|
9
|
-
version: 0.4.
|
8
|
+
- 3
|
9
|
+
version: 0.4.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- jan@moviepilot.com
|
@@ -283,7 +283,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
283
283
|
requirements:
|
284
284
|
- - ">="
|
285
285
|
- !ruby/object:Gem::Version
|
286
|
-
hash: -
|
286
|
+
hash: -4332682487524126748
|
287
287
|
segments:
|
288
288
|
- 0
|
289
289
|
version: "0"
|