require "#{File.expand_path(File.dirname(__FILE__))}/helper" describe "BasicHtmlHelper" do class MockJavascriptHelperContext < Crystal::MockTemplateContext inherit Crystal::JavascriptHelper end before :each do @t = MockJavascriptHelperContext.new end it "javascript_include_tag" do @t.javascript_include_tag('/public/js/app.js').should == %() end end