Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6675097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:48:42+00:00 2026-05-26T03:48:42+00:00

In my test app, which uses test::unit, I need to start by pulling a

  • 0

In my test app, which uses test::unit, I need to start by pulling a bunch of data from various sources. I’d like to only do this once – the data is only read, not written, and doesn’t change between tests, and the loading (and error checking for the loading), takes some time.

There are values that I DO want reset every time, and those are easy enough, but what if I want persistant accessible values? What’s the best way to do this?

I’m especially interested in solutions that would let my push those assignments to some module that can be included in all my tests, since they all need access to this data.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:48:43+00:00Added an answer on May 26, 2026 at 3:48 am

    Why do you need it inside the test? You could define it gloabl:

    gem 'test-unit'#, '>= 2.1.1' #startup
    require 'test/unit'
    
    GLOBAL_DATA = 11
    
    class My_Tests < Test::Unit::TestCase
    
      def test_1()
        puts "Testing startup 1"
        assert_equal(11, GLOBAL_DATA)
      end
    end
    

    GLOBAL_DATA could be a (singleton)-class (respective an instance).

    If you have only one testclass, you may use TestCase.startup:

    gem 'test-unit'#, '>= 2.1.1' #startup
    require 'test/unit'
    
    
    class My_Tests < Test::Unit::TestCase
      def self.startup
        puts "Define global_data "
        @@global_data = 11
      end
    
      def test_1()
        puts "Testing 1"
        assert_equal(11,     @@global_data = 11)
      end
      def test_2()
        puts "Testing 2"
        assert_equal(11,     @@global_data = 11)
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a small app which I need to test with utf-8 characters
I want to write a simple P2P test app which uses HTTP as underlying
tldr; When I run a rake task in a test app which uses an
How I get my UPN from Active Directory? I need to test an app
While writing a method in my app which uses playframework ,I need to get
I'm developing an app which uses APNS and I would like to distribute it
I've written a small hello world test app in Silverlight which i want to
I have been working on test framework, which creates a new app domain to
I made a test a program which uses Google maps following a tutorial. I
I'm unit testing a google app engine app that uses the login setting in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.