Skip to content

Commit

Permalink
fixed sprite hash in features
Browse files Browse the repository at this point in the history
  • Loading branch information
scottdavis committed Jul 26, 2011
1 parent 387a2ff commit 3f72a54
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -7,7 +7,7 @@ GIT
PATH
remote: .
specs:
compass (0.12.0.alpha.0.64d0787)
compass (0.12.0.alpha.0.387a2ff)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.1)
Expand Down
4 changes: 2 additions & 2 deletions features/command_line.feature
Expand Up @@ -200,15 +200,15 @@ Feature: Command Line
| tmp/box_shadow.css |
| tmp/columns.css |
| tmp/fonts.css |
| images/flag-s*.png |
| images/flag-s8c3c755a68.png |
And the following files are removed:
| .sass-cache/ |
| tmp/border_radius.css |
| tmp/box.css |
| tmp/box_shadow.css |
| tmp/columns.css |
| tmp/fonts.css |
| images/flag-s*.png |
| images/flag-s8c3c755a68.png |

Scenario: Watching a project for changes
Given ruby supports fork
Expand Down
8 changes: 0 additions & 8 deletions features/step_definitions/command_line_steps.rb
Expand Up @@ -134,20 +134,12 @@
Then "the following files are reported removed:" do |table|
table.rows.each do |css_file|
#need to find a better way but this works for now
if css_file.first.include?('flag-s')
css_file[0] = Dir[css_file.first].sort.first
puts css_file[0] = Dir[css_file.first].sort.first
end
Then %Q{a css file #{css_file.first} is reported removed}
end
end

Then "the following files are removed:" do |table|
table.rows.each do |css_file|
#need to find a better way but this works for now
if css_file.first.include?('flag-s')
css_file[0] = Dir[css_file.first].sort.first
end
Then %Q{a css file #{css_file.first} is removed}
end
end
Expand Down

0 comments on commit 3f72a54

Please sign in to comment.