Sha256: 9a37245d62f828750881a94251befdeee45f985ce38cf7fd61135b395c91715b

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

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(Eprime::Transformers::BasicTransformer)
  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

3 entries across 3 versions & 1 rubygems

Version Path
optimus-ep-0.6.5 spec/runners/generic_runner_spec.rb
optimus-ep-0.6.9 spec/runners/generic_runner_spec.rb
optimus-ep-0.6.91 spec/runners/generic_runner_spec.rb