Sha256: 7f24df0abfd5b47b12f5df07c39d8075390a71dcdca1682bf870e95d5939496c

Contents?: true

Size: 1.09 KB

Versions: 13

Compression:

Stored size: 1.09 KB

Contents

require 'test_helper'

class VistaSystemTest < Test::Unit::TestCase
  include Sprout::TestHelper

  context "new windows vista system" do

    setup do
      @user_system = Sprout::System::VistaSystem.new
    end

    should "work when env_userprofile isn't found" do
      @user_system.stubs(:find_home).returns 'C:\Documents and Settings\Some System'
      File.stubs(:exists?).returns true
      assert_equal 'C:\Documents and Settings\Some System/Local Settings/Application Data', @user_system.library
    end

    context "with a valid userprofile" do

      setup do
        @user_system.stubs(:env_userprofile).returns '/somehome'
      end

      should "find library" do
        File.stubs(:exists?).returns true
        assert_equal '/somehome/Local Settings/Application Data', @user_system.library
      end

      should "wrap paths that have spaces with escaped quotes" do
        assert_equal "\"foo bar\"", @user_system.clean_path("foo bar")
      end

      should "not modify paths that have no spaced" do
        assert_equal "foobar", @user_system.clean_path("foobar")
      end
    end

  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
sprout-1.1.18.pre test/unit/vista_system_test.rb
sprout-1.1.17.pre test/unit/vista_system_test.rb
sprout-1.1.16.pre test/unit/vista_system_test.rb
sprout-1.1.15.pre test/unit/vista_system_test.rb
sprout-1.1.14.pre test/unit/vista_system_test.rb
sprout-1.1.13.pre test/unit/vista_system_test.rb
sprout-1.1.11.pre test/unit/vista_system_test.rb
sprout-1.1.10.pre test/unit/vista_system_test.rb
sprout-1.1.7.pre test/unit/vista_system_test.rb
sprout-1.1.5.pre test/unit/vista_system_test.rb
sprout-1.1.4.pre test/unit/vista_system_test.rb
sprout-1.1.3.pre test/unit/vista_system_test.rb
sprout-1.1.2.pre test/unit/vista_system_test.rb