spec/alexandria/ui/main_app_spec.rb in alexandria-book-collection-manager-0.7.3 vs spec/alexandria/ui/main_app_spec.rb in alexandria-book-collection-manager-0.7.4

- old
+ new

@@ -17,28 +17,28 @@ # You should have received a copy of the GNU General Public # License along with Alexandria; see the file COPYING. If not, # write to the Free Software Foundation, Inc., 51 Franklin Street, # Fifth Floor, Boston, MA 02110-1301 USA. -require File.dirname(__FILE__) + '/../../spec_helper' +require File.dirname(__FILE__) + "/../../spec_helper" # break this up! describe CellRendererToggle do - it 'should work' + it "should work" end describe Gtk::ActionGroup do - it 'should work' + it "should work" end describe Gtk::IconView do - it 'should work' + it "should work" end describe Alexandria::UI::MainApp do - it 'should be a singleton' do + it "is a singleton" do expect do - Alexandria::UI::MainApp.new + described_class.new end.to raise_error NoMethodError end end