Sha256: fda9e319596a475ed131bc665bfd8a076221532153d4655aed2761da8a228d36
Contents?: true
Size: 1014 Bytes
Versions: 1
Compression:
Stored size: 1014 Bytes
Contents
# 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 <njvack@wisc.edu>, 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 <njvack@wisc.edu>, 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
optimus-ep-0.6.0 | spec/runners/generic_runner_spec.rb |