Sha256: 97a2cae72c25f8775b7f59af674acf693c13a2ca43419d9cd88f10461d2be373
Contents?: true
Size: 401 Bytes
Versions: 34
Compression:
Stored size: 401 Bytes
Contents
Given /^I have GLI installed$/ do add_to_lib_path(GLI_LIB_PATH) end Given /^my terminal size is "([^"]*)"$/ do |terminal_size| if terminal_size =~/^(\d+)x(\d+)$/ ENV['COLUMNS'] = $1 ENV['LINES'] = $2 else raise "Terminal size should be COLxLines, e.g. 80x24" end end Given /^the file "(.*?)" doesn't exist$/ do |filename| FileUtils.rm filename if File.exists?(filename) end
Version data entries
34 entries across 34 versions & 2 rubygems