Method: Fixtures::Boolean#simple
- Defined in:
- lib/data_model/fixtures/boolean.rb
#simple ⇒ Example
a simple boolean example
9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/data_model/fixtures/boolean.rb', line 9 def simple Example.new( [:boolean], variants: { true: true, false: false, string: ["true", true], missing: nil }, ) end |