Sha256: b6d22920cd1bd56afd19c559d4f28a3788463231153e58d8f61849338a6c3a8c
Contents?: true
Size: 651 Bytes
Versions: 8
Compression:
Stored size: 651 Bytes
Contents
require File.expand_path(File.dirname(__FILE__)+"/spec_helper.rb") describe Rubyvis::Mark do it "should have correct properties" do props=[:antialias, :bottom, :cursor, :data, :events, :id, :left, :reverse, :right, :title, :top, :visible].inject({}) {|ac, v| ac[v]=true; ac} Rubyvis::Mark.properties.should==props end it "should return correct defaults" do props=Rubyvis::Mark.defaults._properties.sort {|a,b| a.name.to_s<=>b.name.to_s} props[1].name.should==:data props[1].value.should be_instance_of Proc props[3].name.should==:visible props[0].name.should==:antialias props[2].name.should==:events end end
Version data entries
8 entries across 8 versions & 1 rubygems