hyrax-spec 0.3.0 → 0.3.2

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: 387b76ffb416aa87c56d3af3b5b9e3566e3e0628
4
- data.tar.gz: e56c6f049baf9e5da3f3448642b2335cea1f3a5c
3
+ metadata.gz: aa9c1042550f9e34b48e003502073d4fdef56eb5
4
+ data.tar.gz: cced8e0a2c206c12a14ef6d79751f422f403f13f
5
5
  SHA512:
6
- metadata.gz: 20e0e71dfb0ac50e471d30d5c792339a02b5ef8f7f45652c80d29988c7411981f58a6df4944fc6f0805818ec45b98474dfd4c3d0fadfdb05a823287689e0053f
7
- data.tar.gz: d06bba5e9d9378edd4195ab21521c18a4aa2425b4b1c53b0d9d2cd0284d0c38d6d8c89bcb8a04be63703da5752e64905fde2f1e7e125daae104d411eef9536d6
6
+ metadata.gz: '077861e54794d44c0624efd01f4760bd925369ee144f622b53c0f0f72a04eabd2a3b0f350c8f282a1b6f2c4dc450d7c9436f9e41b8d33e951955373e994da1a2'
7
+ data.tar.gz: 18a72694642f2c3e8f2120dd6fb65c2c4b4ab56c546964d321c28eb9468239dd2985cb199104d11ab57d8988de3f504a1ab2109a7515d9946377bbd8803f5e91
@@ -1,3 +1,16 @@
1
+ v0.3.2 -- 2018-01-30
2
+ --------------------
3
+
4
+ - Fix bug in `have_form_field` matcher to properly identify
5
+ multi-valued select fields . 3876286
6
+
7
+ v0.3.1 -- 2018-01-29 --- YANKED
8
+ -------------------------------
9
+
10
+ v0.3.0 -- 2017-11-24
11
+ --------------------
12
+
13
+ - Add ActorCreate build strategy for `FactoryBot`. af4369c
1
14
 
2
15
  v0.2.0 -- 2017-11-21
3
16
  --------------------
@@ -14,7 +14,7 @@ RSpec::Matchers.define :have_form_field do |name|
14
14
  when 'input'
15
15
  @field.attributes['class'].value.include? 'multi_value'
16
16
  when 'select'
17
- @field.attributes['multiple']
17
+ @field.attributes['multiple'] || @field.attributes['class'].value.include?('multi_value')
18
18
  end
19
19
 
20
20
  if label
@@ -1,5 +1,5 @@
1
1
  module Hyrax
2
2
  module Spec
3
- VERSION = '0.3.0'.freeze
3
+ VERSION = '0.3.2'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyrax-spec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Johnson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-24 00:00:00.000000000 Z
11
+ date: 2018-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec