# Part of the Optimus package for managing E-Prime data # # Copyright (C) 2008 Board of Regents of the University of Wisconsin System # # Written by Nathan Vack , at the Waisman Laborotory for Brain # Imaging and Behavior, University of Wisconsin - Madison # Part of the Optimus package for managing E-Prime data # # Copyright (C) 2008 Board of Regents of the University of Wisconsin System # # Written by Nathan Vack , at the Waisman Laborotory for Brain # Imaging and Behavior, University of Wisconsin - Madison require File.join(File.dirname(__FILE__),'../spec_helper') require File.join(File.dirname(__FILE__), '../../lib/eprime') require 'runners/generic_runner' include EprimeTestHelper describe Eprime::Runners::GenericRunner do before :each do @txr = Eprime::Runners::GenericRunner.new end it "should start with stdout in @out" do @txr.out.should == STDOUT end it "should start with stderr in @err" do @txr.err.should == STDERR end end