Module: FIXSpec
- Extended by:
- FIXSpec
- Included in:
- FIXSpec
- Defined in:
- lib/fix_spec.rb,
lib/fix_spec/builder.rb,
lib/fix_spec/helpers.rb,
lib/fix_spec/cucumber.rb,
lib/fix_spec/matchers.rb,
lib/fix_spec/data_dictionary.rb,
lib/fix_spec/matchers/be_fix_eql.rb,
lib/fix_spec/matchers/have_fix_path.rb
Defined Under Namespace
Modules: Builder, Cucumber, Helpers, Matchers Classes: DataDictionary
Instance Attribute Summary collapse
-
#application_data_dictionary ⇒ Object
(also: #data_dictionary)
Returns the value of attribute application_data_dictionary.
-
#session_data_dictionary ⇒ Object
Returns the value of attribute session_data_dictionary.
Instance Method Summary collapse
Instance Attribute Details
#application_data_dictionary ⇒ Object Also known as: data_dictionary
Returns the value of attribute application_data_dictionary
7 8 9 |
# File 'lib/fix_spec.rb', line 7 def application_data_dictionary @application_data_dictionary end |
#session_data_dictionary ⇒ Object
Returns the value of attribute session_data_dictionary
7 8 9 |
# File 'lib/fix_spec.rb', line 7 def session_data_dictionary @session_data_dictionary end |
Instance Method Details
#data_dictionary=(dd) ⇒ Object
11 12 13 14 |
# File 'lib/fix_spec.rb', line 11 def data_dictionary=(dd) @application_data_dictionary=dd @session_data_dictionary=dd end |
#reset ⇒ Object
24 25 26 |
# File 'lib/fix_spec.rb', line 24 def reset instance_variables.each{|ivar| remove_instance_variable(ivar)} end |