Sha256: ef61c3658fadd382a78a6ef311532d7ca84adbd75d1f19127cfb441a04f374f5
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 KB
Contents
require 'test/unit' require 'fileutils' require 'rubygems' require 'mocha' RAILS_ROOT = '.' require 'vizres' class VizresTest < Test::Unit::TestCase # class Response # attr_accessor :body # end # # def test_foo # response = Response.new # response.body = "<html>FOO</html>" # @response = response # vr(:html) # end def setup @response = stub(:body => "<html></html>") end def test_vr self.expects(:create_tmp_if_missing) File.expects(:open).with(RESPONSE_HTML, File::CREAT|File::TRUNC|File::WRONLY) Browser.expects(:open).with("http://localhost:3000/tmp/response.html") vr end def test_vr_in_web self.expects(:create_tmp_if_missing) File.expects(:open).with(RESPONSE_HTML, File::CREAT|File::TRUNC|File::WRONLY) Browser.expects(:open).with("http://localhost:3000/tmp/response.html") vr(:web) end def test_vr_in_html self.expects(:create_tmp_if_missing) File.expects(:open).with(RESPONSE_TXT, File::CREAT|File::TRUNC|File::WRONLY) Browser.expects(:open).with("./public/tmp/response.txt") vr(:html) end def test_vr_with_raw_html self.expects(:create_tmp_if_missing) File.expects(:open).with(RESPONSE_HTML, File::CREAT|File::TRUNC|File::WRONLY) Browser.expects(:open).with("./public/tmp/response.html") vr("<html></html>") end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
radiant-0.7.2 | vendor/plugins/vizres/test/vizres_test.rb |
radiant-0.7.0 | vendor/plugins/vizres/test/vizres_test.rb |
radiant-0.7.1 | vendor/plugins/vizres/test/vizres_test.rb |