Sha256: bdef46f966fd1c4418713d7e9e7b5960a2e0e863d94e9dc5ccac8f48625c6cc9
Contents?: true
Size: 922 Bytes
Versions: 3
Compression:
Stored size: 922 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') class A include SAXMachine element :title end class B < A element :b end class C < B element :c end describe "SAXMachine inheritance" do before do xml = "<top><title>Test</title><b>Matched!</b><c>And Again</c></top>" @a = A.new @a.parse xml @b = B.new @b.parse xml @c = C.new @c.parse xml end it { @a.should be_a(A) } it { @a.should_not be_a(B) } it { @a.should be_a(SAXMachine) } it { @a.title.should == "Test" } it { @b.should be_a(A) } it { @b.should be_a(B) } it { @b.should be_a(SAXMachine) } it { @b.title.should == "Test" } it { @b.b.should == "Matched!" } it { @c.should be_a(A) } it { @c.should be_a(B) } it { @c.should be_a(C) } it { @c.should be_a(SAXMachine) } it { @c.title.should == "Test" } it { @c.b.should == "Matched!" } it { @c.c.should == "And Again" } end
Version data entries
3 entries across 3 versions & 2 rubygems