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 CHANGED
@@ -1 +1 @@
1
- 0.4.2
1
+ 0.4.3
data/apirunner.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{apirunner}
8
- s.version = "0.4.2"
8
+ s.version = "0.4.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["jan@moviepilot.com"]
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
@@ -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 == "eb46f75b6a"
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 == "eb46f75b6a"
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
- - 2
9
- version: 0.4.2
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: -952737511013591802
286
+ hash: -4332682487524126748
287
287
  segments:
288
288
  - 0
289
289
  version: "0"