Sha256: 716bb0132cbab07777d8a966e8bb43d1da7c71c6736f4735965def1a2025912c
Contents?: true
Size: 1.03 KB
Versions: 19
Compression:
Stored size: 1.03 KB
Contents
require File.expand_path(File.join(File.dirname(__FILE__), %w[.. .. spec_helper])) describe Ziya::Gauges::Support::Image do before( :all ) do @comp = Ziya::Gauges::Support::Image.new( :x => 10, :y => 20, :width => 200, :height => 100, :url => "blee", :rotation => 90, :alpha => 10, :timeout => 10 ) end describe "#flatten" do it "should flatten component correctly" do xml = Builder::XmlMarkup.new @comp.flatten( xml ) buff = xml.to_s @comp.class.attributes[@comp.class.name].each do |attr| buff.scan( /#{attr}=\"(\w+)\"/ ).should == [ [@comp.send( attr ).to_s] ] unless attr == :retry end end end describe "YAML load" do it "should load from yaml correctly" do comp = YAML.load( @comp.to_comp_yaml( :test, 1 ) ).first[:test] @comp.options.each_pair do |k,v| comp.send( k ).to_s.should == v.to_s end end end end
Version data entries
19 entries across 19 versions & 2 rubygems