Sha256: f8eeaef6f980d4b85b4a0f77a974180663f3253bf4caf47cd943badbb7b50385

Contents?: true

Size: 1.44 KB

Versions: 10

Compression:

Stored size: 1.44 KB

Contents

require File.dirname(__FILE__) + '/spec_helper.rb'

describe RubyPython do
  describe "#import" do
    it "should handle multiple imports" do
      lambda do
        RubyPython.import 'cPickle'
        RubyPython.import 'urllib'
      end.should_not raise_exception
    end

    it "should propagate Python errors" do
      lambda do
        RubyPython.import 'nonExistentModule'
      end.should raise_exception(RubyPython::PythonError)
    end

    it "should return a RubyPyModule" do
      RubyPython.import('urllib2').should be_a(RubyPython::RubyPyModule)
    end
  end
end

describe RubyPython, :self_start => true do

  describe "#session" do
    it "should start interpreter" do
      RubyPython.session do
        cPickle = RubyPython.import "cPickle"
        cPickle.loads("(dp1\nS'a'\nS'n'\ns(I1\nS'2'\ntp2\nI4\ns.").rubify.should == {"a"=>"n", [1, "2"]=>4}
      end
    end

    it "should stop the interpreter" do
      RubyPython.session do
        cPickle = RubyPython.import "cPickle"
      end

      RubyPython.stop.should be_false
    end
  end

  describe "#run" do
    it "should start interpreter" do
      RubyPython.run do
        cPickle = import "cPickle"
        cPickle.loads("(dp1\nS'a'\nS'n'\ns(I1\nS'2'\ntp2\nI4\ns.").rubify.should == {"a"=>"n", [1, "2"]=>4}
      end
    end

    it "should stop the interpreter" do
      RubyPython.run do
        cPickle = import "cPickle"
      end

      RubyPython.stop.should be_false
    end
  end
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
lokeshh_rubypython-0.7.1 spec/rubypython_spec.rb
lokeshh_rubypython-0.7 spec/rubypython_spec.rb
rubypython-0.6.4 spec/rubypython_spec.rb
rubypython-0.6.3 spec/rubypython_spec.rb
rubypython-raspi-0.1.2 spec/rubypython_spec.rb
rubypython-raspi-0.1.1 spec/rubypython_spec.rb
rubypython-raspi-0.1.0 spec/rubypython_spec.rb
rubypython-0.6.2 spec/rubypython_spec.rb
rubypython-0.6.1 spec/rubypython_spec.rb
rubypython-0.6.0 spec/rubypython_spec.rb