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

Version Path
kentucky-3.1.0 features/step_definitions/kentucky_steps.rb
kentucky-3.0.3 features/step_definitions/kentucky_steps.rb
kentucky-3.0.2 features/step_definitions/kentucky_steps.rb
kentucky-3.0.1 features/step_definitions/kentucky_steps.rb
kentucky-3.0.0 features/step_definitions/kentucky_steps.rb
kentucky-2.2.2 features/step_definitions/kentucky_steps.rb
kentucky-2.2.1 features/step_definitions/kentucky_steps.rb
kentucky-2.1.0 features/step_definitions/kentucky_steps.rb
kentucky-2.0.0 features/step_definitions/kentucky_steps.rb
kentucky-1.5.1 features/step_definitions/kentucky_steps.rb
kentucky-1.5.0 features/step_definitions/kentucky_steps.rb
kentucky-1.4.0 features/step_definitions/kentucky_steps.rb
kentucky-1.2.1 features/step_definitions/kentucky_steps.rb
kentucky-1.2.0 features/step_definitions/kentucky_steps.rb
kentucky-1.1.0 features/step_definitions/kentucky_steps.rb
kentucky-1.0.5 features/step_definitions/kentucky_steps.rb
kentucky-1.0.4 features/step_definitions/kentucky_steps.rb
kentucky-1.0.3 features/step_definitions/kentucky_steps.rb
kentucky-1.0.0 features/step_definitions/kentucky_steps.rb
kentucky-0.5.2 features/step_definitions/kentucky_steps.rb