Sha256: 3d8dee2e73694b22f5646ff8250ab05c390d914846bf5b18caf087409a5eba4b
Contents?: true
Size: 820 Bytes
Versions: 1
Compression:
Stored size: 820 Bytes
Contents
Given /^minable is already installed$/ do install_minable end Given /^I install minable to "([^"]*)"$/ do |path| end Then /^the sass directories(?: with "([^"]+)" prefix)? should have been generated$/ do |prefix| sass_directories = ['minable', 'minable-ui'] sass_directories.map!{ |directory| minable_path(prefix, directory) } check_directory_presence(sass_directories, true) end Then /^the master minable partial should have been generated(?: within "([^"]+)" directory)?$/ do |prefix| check_file_presence([minable_path(prefix, '_all.scss')], true) end Then /^minable should not have been generated$/ do check_directory_presence(['minable'], false) end Then /^the output should contain the current version of Minable$/ do step %(the output should contain exactly "Minable #{Minable::VERSION}\n") end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
minable-0.1.1 | features/step_definitions/minable_steps.rb |