Sha256: cac32548f7a56b36fe0d7c1d7560943e33855d7b205d99a7e462fd74fb18900b
Contents?: true
Size: 814 Bytes
Versions: 32
Compression:
Stored size: 814 Bytes
Contents
Given /^kentucky is already installed$/ do install_kentucky end Given /^I install kentucky to "([^"]*)"$/ do |path| end Then /^the sass directories(?: with "([^"]+)" prefix)? should have been generated$/ do |prefix| sass_directories = [] sass_directories.map!{ |directory| kentucky_path(prefix, directory) } check_directory_presence(sass_directories, true) end Then /^the master kentucky partial should have been generated(?: within "([^"]+)" directory)?$/ do |prefix| check_file_presence([kentucky_path(prefix, '_kentucky.scss')], true) end Then /^kentucky should not have been generated$/ do check_directory_presence(['kentucky'], false) end Then /^the output should contain the current version of Kentucky$/ do step %(the output should contain exactly "Kentucky #{Kentucky::VERSION}\n") end
Version data entries
32 entries across 32 versions & 1 rubygems