test/lib/vedeu/geometry/geometry_test.rb in vedeu-0.4.39 vs test/lib/vedeu/geometry/geometry_test.rb in vedeu-0.4.40
- old
+ new
@@ -49,59 +49,23 @@
it do
subject.instance_variable_get('@repository').must_equal(Vedeu.geometries)
end
end
- describe '#centred' do
+ describe 'accessors' do
it { instance.must_respond_to(:centred) }
- end
-
- describe '#centred=' do
it { instance.must_respond_to(:centred=) }
- end
-
- describe '#attributes' do
it { instance.must_respond_to(:attributes) }
- end
-
- describe '#name' do
it { instance.must_respond_to(:name) }
- end
-
- describe '#name=' do
it { instance.must_respond_to(:name=) }
- end
-
- describe '#height=' do
it { instance.must_respond_to(:height=) }
- end
-
- describe '#maximised' do
it { instance.must_respond_to(:maximised) }
it { instance.must_respond_to(:maximised?) }
- end
-
- describe '#maximised=' do
it { instance.must_respond_to(:maximised=) }
- end
-
- describe '#width=' do
it { instance.must_respond_to(:width=) }
- end
-
- describe '#x=' do
it { instance.must_respond_to(:x=) }
- end
-
- describe '#xn=' do
it { instance.must_respond_to(:xn=) }
- end
-
- describe '#y=' do
it { instance.must_respond_to(:y=) }
- end
-
- describe '#yn=' do
it { instance.must_respond_to(:yn=) }
end
describe '#inspect' do
subject { instance.inspect }