Sha256: baeaf8eb5194fed8c90373a1cb5bbbdf7ca8b534c3e5ccb1110ef60b5574e733

Contents?: true

Size: 499 Bytes

Versions: 3

Compression:

Stored size: 499 Bytes

Contents

require "webpacker_test"

class ConfigurationTest < Minitest::Test
  def test_manifest_path
    manifest_path = File.join(File.dirname(__FILE__), "test_app/public/webpack/test", "manifest.json").to_s
    assert_equal manifest_path, WebpackerLite::Configuration.manifest_path.to_s
  end

  def test_output_path
    output_path = File.join(File.dirname(__FILE__), "test_app/public/webpack/test").to_s
    assert_equal output_path, WebpackerLite::Configuration.webpack_public_output_dir.to_s
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
webpacker_lite-2.1.0 test/configuration_test.rb
webpacker_lite-2.0.4 test/configuration_test.rb
webpacker_lite-2.0.3 test/configuration_test.rb