10 lines
256 B
Ruby
10 lines
256 B
Ruby
describe Fastlane::Actions::AndroidCdAction do
|
|
describe '#run' do
|
|
it 'prints a message' do
|
|
expect(Fastlane::UI).to receive(:message).with("The android_cd plugin is working!")
|
|
|
|
Fastlane::Actions::AndroidCdAction.run(nil)
|
|
end
|
|
end
|
|
end
|