Sha256: 692d697be8688ce0f2251c4acd096f6487524c774a00f536c4d813a90bd57980
Contents?: true
Size: 1.88 KB
Versions: 1
Compression:
Stored size: 1.88 KB
Contents
require 'fileutils' Given /^an app directory "(.*?)" exists$/ do |app_dir| @app_dir = app_dir FileUtils.rm_rf(@app_dir) FileUtils.mkdir_p(@app_dir) end Given /^an app is created in directory "(.*?)"$/ do |app_dir| steps %Q{ Given an app directory "#{app_dir}" exists And I run "zat new" command with the following details: | author name | John Citizen | | author email | john@example.com | | app name | John Test App | | app dir | #{app_dir} | } end When /^I run "(.*?)" command with the following details:$/ do |cmd, table| IO.popen(cmd, "w+") do |pipe| # [ ['parameter name', 'value'] ] table.raw.each do |row| pipe.puts row.last end pipe.close_write @output = pipe.readlines @output.each {|line| puts line} end end When /^I run the command "(.*?)" to (validate|package|clean) the app$/ do |cmd, action| IO.popen(cmd, "w+") do |pipe| pipe.puts "\n" pipe.close_write @output = pipe.readlines @output.each {|line| puts line} end end Then /^the app file "(.*?)" is created with:$/ do |file, content| File.read(file).chomp.gsub(' ', '').should == content.gsub(' ', '') end Then /^the fixture "(.*?)" is used for "(.*?)"$/ do |fixture, app_file| fixture_file = File.join('features', 'fixtures', fixture) app_file_path = File.join(@app_dir, app_file) FileUtils.cp(fixture_file, app_file_path) end Then /^the zip file should exist in directory "(.*?)"$/ do |path| Dir[path + '/app-*.zip'].size.should == 1 end Given /^I remove file "(.*?)"$/ do |file| File.delete(file) end Then /^the zip file in "(.*?)" folder should not exist$/ do |path| Dir[path + '/app-*.zip'].size.should == 0 end Then /^it should pass the validation$/ do @output.last.should =~ /OK/ $?.should == 0 end Then /^the command output should contain "(.*?)"$/ do |output| @output.join.should =~ /#{output}/ end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
zendesk_apps_tools-1.2.2 | features/step_definitions/app_steps.rb |