Sha256: 48569f0d035d9402d5fcc2758ce5a2a12e26004175926f8a7df537857f4e9f4e

Contents?: true

Size: 406 Bytes

Versions: 1

Compression:

Stored size: 406 Bytes

Contents

require 'test/unit'
require 'kyper_rails'

class KyperRailsTest < Test::Unit::TestCase
  def test_scss_light
    assert_equal "scss/light.scss", KyperRails.scss("light")
  end

  def test_scss_dark
    assert_equal "scss/dark.scss", KyperRails.scss("dark")
  end

  def test_scss_error
    assert_equal "ERROR: Unknown theme 'crunchy' (try 'light' or 'dark' instead)", KyperRails.scss("crunchy")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kyper_rails-0.0.1 test/test_kyper_rails.rb