Sha256: 2c80da290c289ea65aec8f6c9a7b0fbd43860e0b8ddc5d80c879705157c9b302
Contents?: true
Size: 814 Bytes
Versions: 2
Compression:
Stored size: 814 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'] 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, 'minable/_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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
minable-0.1.3 | features/step_definitions/minable_steps.rb |
minable-0.1.2 | features/step_definitions/minable_steps.rb |