Sha256: 305aed4a668b03a2ec06e53244e7b6112955df39cf2d740ed28db15a5852078b
Contents?: true
Size: 1.52 KB
Versions: 4
Compression:
Stored size: 1.52 KB
Contents
require "test_helper" require "fileutils" require "./lib/roger_sassc/processor" module RogerSassc # Test the processor class TestProcessor < ::Test::Unit::TestCase include FixtureHelper TEST_OUTPUT = "../../tmp/test/fixtures/" def setup @processor = Processor.new {} @processor.stubs(:build_path).returns("./") # Copy fixtures files to fixtures/out output_path = fixture_path(TEST_OUTPUT) FileUtils.rm_rf output_path FileUtils.mkdir_p output_path FileUtils.cp_r fixture_path("."), output_path end def test_processor_can_be_called assert(@processor.respond_to?(:call)) end # Meh :( def test_call_processor release, files = release_mock_with_file expected_css = fixture "output.css" @processor.call release # File is created assert_path_exist fixture_path(TEST_OUTPUT + "general.css") # And matches earlier output assert_equal fixture(TEST_OUTPUT + "general.css"), expected_css # Check clean up assert_path_not_exist files[0] assert_path_not_exist files[1] end def test_processor_raises_on_compilation_errors pend "Validate that the processors just raises with errors in scss files" end private def release_mock_with_file files = [ fixture_path(TEST_OUTPUT + "general.scss"), fixture_path(TEST_OUTPUT + "src/_variables.scss") ] release = mock(get_files: files, log: ->(_s, _m) {}) [release, files] end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
roger_sassc-0.2.0 | test/processor_test.rb |
roger_sassc-0.1.2 | test/processor_test.rb |
roger_sassc-0.1.1 | test/processor_test.rb |
roger_sassc-0.1.0 | test/processor_test.rb |