Skip to content

Commit 0b78dd9

Browse files
committed
all tests pass
1 parent 203e75e commit 0b78dd9

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

cli/Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ unless ENV['PKG']
88
gem "compass-core", :path => "../core" unless defined?(CI)
99
gem "compass-import-once", :path => "../import-once" unless defined?(CI)
1010
gem 'sass-globbing', "~> 1.1.1"
11+
gem "compass-sprites", :path => "../sprites" unless defined?(CI)
1112
gem "cucumber", "~> 1.2.1"
1213
gem "rspec", "~> 2.0.0"
1314
gem "compass-validator", "3.0.1"

core/test/integrations/test_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require "test/unit"
2-
require File.join(File.dirname(__FILE__), "..", "helpers", "diff")
2+
require File.join(File.dirname(__FILE__), "..", "..", "..", "test", "common", "helpers", "diff")
33

44
include Compass::Test::Diff
55

core/test/units/test_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'compass/core'
33

44
require "test/unit"
5-
require File.expand_path(File.join(File.dirname(__FILE__), "..", "helpers", "diff"))
5+
require File.join(File.dirname(__FILE__), "..", "..", "..", "test", "common", "helpers", "diff")
66

77
include Compass::Test::Diff
88

test_all.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/bin/sh
22

33
cd core && bundle install --quiet && bundle exec rake test && cd .. &&
4-
cd cli && bundle install --quiet && bundle exec rake && cd .. &&
5-
cd import-once && bundle install --quiet && bundle exec rake test && cd .. &&
6-
cd import-once && (BUNDLE_GEMFILE=Gemfile_sass_3_2 bundle install --quiet && bundle exec rake test) && cd ..
4+
cd cli && bundle install --quiet && bundle exec rake && cd .. &&
5+
cd import-once && bundle install --quiet && bundle exec rake test && cd .. &&
6+
cd import-once && (BUNDLE_GEMFILE=Gemfile_sass_3_2 bundle install --quiet && bundle exec rake test) && cd ..
7+
cd cli && bundle install --quiet && bundle exec rake && cd .. &&
8+
cd sprites && bundle install --quiet && bundle exec rake && cd ..

0 commit comments

Comments
 (0)