File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- fastlane-plugin-settings_bundle (1.1.0 )
4+ fastlane-plugin-settings_bundle (1.1.1 )
55 plist
66 xcodeproj (>= 1.4.0 )
77
Original file line number Diff line number Diff line change 6161 end
6262 end
6363
64+ describe 'options' do
65+ let ( :options ) { action . available_options }
66+
67+ it 'includes a :xcodeproj option' do
68+ expect ( options . find { |o | o . key == :xcodeproj && o . env_name == "SETTINGS_BUNDLE_XCODEPROJ" } ) . not_to be_nil
69+ end
70+
71+ it 'includes a :key option' do
72+ expect ( options . find { |o | o . key == :key && o . env_name == "SETTINGS_BUNDLE_KEY" } ) . not_to be_nil
73+ end
74+
75+ it 'includes a :value option' do
76+ expect ( options . find { |o | o . key == :value && o . env_name == "SETTINGS_BUNDLE_VALUE" } ) . not_to be_nil
77+ end
78+
79+ it 'includes a :configuration option' do
80+ expect ( options . find { |o | o . key == :configuration && o . env_name == "SETTINGS_BUNDLE_CONFIGURATION" } ) . not_to be_nil
81+ end
82+
83+ it 'includes a :file option' do
84+ expect ( options . find { |o | o . key == :file && o . env_name == "SETTINGS_BUNDLE_FILE" } ) . not_to be_nil
85+ end
86+
87+ it 'includes a :target option' do
88+ expect ( options . find { |o | o . key == :target && o . env_name == "SETTINGS_BUNDLE_TARGET" } ) . not_to be_nil
89+ end
90+ end
91+
6492 # Satisfy simplecov
6593 describe 'other methods' do
6694 it 'has examples' do
You can’t perform that action at this time.
0 commit comments