morse_spec_helpers 0.0.10 → 0.0.11

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1208d872617aed54c134321a49593e0dbebe91ed
4
- data.tar.gz: f01da984408c243b7dca1b9132649dc25b9466e8
3
+ metadata.gz: ca8b5f48a9cc63f363a47d751e319c0efa2bba06
4
+ data.tar.gz: 9219089201898b1be1e1f7fcbd0f45564c4d38e5
5
5
  SHA512:
6
- metadata.gz: 075b6366d4fa10a07bee9c78428cbe019ea1a5eaeb3fe192ffe6c7400b77f9b99b5b76e2e476f68b47593a72b377ec751bbe27f63c120b7139f008c8b2cecae3
7
- data.tar.gz: de4e3197ec3463590872862b52047a41a4423c241a3972af431689d5b9ed3cc4a23344a29f9a49ad60f797998fdb20fd5561c448186f404b40bd71d61f9609cc
6
+ metadata.gz: 5853dc75cd85d34d71cec14dc26fe4201364e4a8d9f56a3c7a080ad897fd5d988d7e82a1ecf62fd7a2abf8009a7019a5e22bd80fc82f9444af1f63459c8957e8
7
+ data.tar.gz: 671c1cce6ae49c6ac41318a97d6f71ebd63d4faf29242d3f0473bd0a1f67aacde1b130502b3ea27a9d8b28ceaf0bd0e97af12536f2d223b8e38ed6f5bad7c06d
@@ -7,7 +7,7 @@ module MorseSpecHelpers
7
7
  exists(method)
8
8
  it "should default to false" do
9
9
  new_thing=@instance.class.new
10
- expect(new_thing.send(method)).to be_false
10
+ expect(new_thing.send(method)).to be_falsey
11
11
  end
12
12
  end
13
13
 
@@ -15,7 +15,7 @@ module MorseSpecHelpers
15
15
  exists(method)
16
16
  it "should default to true" do
17
17
  new_thing=@instance.class.new
18
- expect(new_thing.send(method)).to be_true
18
+ expect(new_thing.send(method)).to be_truthy
19
19
  end
20
20
  end
21
21
 
@@ -37,7 +37,7 @@ module MorseSpecHelpers
37
37
  context "#{method}" do
38
38
  exists(method)
39
39
  it "should be an Array" do
40
- expect(@instance.send(method).is_a?(Array)).to be_true
40
+ expect(@instance.send(method).is_a?(Array)).to be_truthy
41
41
  end
42
42
  end
43
43
  end
@@ -95,7 +95,7 @@ module MorseSpecHelpers
95
95
  context "#{method}" do
96
96
  exists(method)
97
97
  it "should be an ActiveRecord::Relation" do
98
- expect(@instance.send(method).is_a?(ActiveRecord::Relation)).to be_true
98
+ expect(@instance.send(method).is_a?(ActiveRecord::Relation)).to be_truthy
99
99
  end
100
100
  end
101
101
  end
@@ -398,7 +398,7 @@ module MorseSpecHelpers
398
398
  expect(@instance.send(method)).to be_nil
399
399
  @instance.send("#{method}_attachment_title=",nil)
400
400
  @instance.send("#{method}_attachment=",fixture_file_upload("../support/images/placeholder.png", 'image/png'))
401
- expect(@instance.valid?).to_not be_true
401
+ expect(@instance.valid?).to_not be_truthy
402
402
  expect(@instance.errors[method]).to_not be_empty
403
403
  expect(@instance.send(method)).to be_nil
404
404
  end
@@ -411,7 +411,7 @@ module MorseSpecHelpers
411
411
  def processes_multiple_attachments_to_attribute(method)
412
412
  describe "#{method} processing" do
413
413
  it "should respond to #{method}" do
414
- expect(@instance.respond_to?(method)).to be_true
414
+ expect(@instance.respond_to?(method)).to be_truthy
415
415
  end
416
416
  describe "accessors" do
417
417
  %w{attachment attachment_title attachment_alt attachment_remove}.each do |suffix|
@@ -438,7 +438,7 @@ module MorseSpecHelpers
438
438
  expect(@instance.send(method)).to be_empty
439
439
  @instance.send("#{method.to_s.singularize}_attachment_alt=",nil)
440
440
  @instance.send("#{method.to_s.singularize}_attachment=",fixture_file_upload("../support/images/placeholder.png", 'image/png'))
441
- expect(@instance.valid?).to_not be_true
441
+ expect(@instance.valid?).to_not be_truthy
442
442
  expect(@instance.errors[method]).to_not be_empty
443
443
  expect(@instance.send(method)).to be_empty
444
444
  end
@@ -1,3 +1,3 @@
1
1
  module MorseSpecHelpers
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: morse_spec_helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Terry S