Sha256: f8bb579b973e1b480f6d24d19f54c4a5a419cdbd8d832a12e96953a7522d7c36

Contents?: true

Size: 974 Bytes

Versions: 8

Compression:

Stored size: 974 Bytes

Contents

Given /^bourbon is already installed$/ do
  set_up_bourbon_directory
  install_bourbon
end

When /^I install bourbon files$/ do
  set_up_bourbon_directory
  install_bourbon
end

When /^I update bourbon files$/ do
  update_bourbon
end

Then /^the sass directories should have been generated$/ do
  sass_directories = ["bourbon/addons", "bourbon/css3", "bourbon/functions"]
  check_directory_presence(sass_directories, true)
end

Then /^the master bourbon partial should have been generated$/ do
  check_file_presence(["bourbon/_bourbon.scss"], true)
end

Then /^the lib files should have been generated$/ do
  check_file_presence(["bourbon/lib/bourbon.rb"], true)
  check_directory_presence(["bourbon/lib/bourbon"], true)
  check_file_presence(["bourbon/lib/bourbon/sass_extensions.rb"], true)
  check_directory_presence(["bourbon/lib/bourbon/sass_extensions"], true)
end

Then /^bourbon should not have been generated$/ do
  check_directory_presence(["bourbon"], false)
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bourbon-2.1.1 features/step_definitions/bourbon_steps.rb
bourbon-2.1.0 features/step_definitions/bourbon_steps.rb
bourbon-2.0.0.rc1 features/step_definitions/bourbon_steps.rb
bourbon-1.4.0 features/step_definitions/bourbon_steps.rb
bourbon-1.3.6 features/step_definitions/bourbon_steps.rb
bourbon-1.3.5 features/step_definitions/bourbon_steps.rb
bourbon-1.3.4 features/step_definitions/bourbon_steps.rb
bourbon-1.3.3 features/step_definitions/bourbon_steps.rb