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