Sha256: 99864d170cdec409ce58b95a2459948490dcbc63c757cbdfdb3490a8caac3be9

Contents?: true

Size: 459 Bytes

Versions: 7

Compression:

Stored size: 459 Bytes

Contents

#!/usr/bin/env bats

rubie="1.9.3-p327-railsexpress"

load _common

@test "RVM $rubie can use nokogiri with openssl" {
  run_nokogiri_openssl_test $rubie
}

# For more details, please see:
# https://github.com/fnichol/chef-rvm/pull/137#issuecomment-12258247
@test "RVM $rubie can use patched functionality" {
  script="puts Thread.current.thread_variable_set :foo, 'bar'"

  run rvm $rubie do ruby -e "$script"
  [ "$status" -eq 0 ]
  [ "$output" = "bar" ]
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
from-scratch-0.7.0 cookbooks/rvm/test/integration/rubies/bats/verify_patch_support.bats
from-scratch-0.6.0 cookbooks/rvm/test/integration/rubies/bats/verify_patch_support.bats
from-scratch-0.5.0 cookbooks/rvm/test/integration/rubies/bats/verify_patch_support.bats
from-scratch-0.3.0 cookbooks/rvm/test/integration/rubies/bats/verify_patch_support.bats
from-scratch-0.2.0 cookbooks/rvm/test/integration/rubies/bats/verify_patch_support.bats
from-scratch-0.1.1 cookbooks/rvm/test/integration/rubies/bats/verify_patch_support.bats
from-scratch-0.1.0 cookbooks/rvm/test/integration/rubies/bats/verify_patch_support.bats