unit-hosting 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,18 +0,0 @@
1
- require 'rubygems'
2
- require 'bundler'
3
- begin
4
- Bundler.setup(:default, :development)
5
- rescue Bundler::BundlerError => e
6
- $stderr.puts e.message
7
- $stderr.puts "Run `bundle install` to install missing gems"
8
- exit e.status_code
9
- end
10
- require 'test/unit'
11
-
12
-
13
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
- $LOAD_PATH.unshift(File.dirname(__FILE__))
15
- require 'unit-hosting'
16
-
17
- class Test::Unit::TestCase
18
- end
@@ -1,13 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- require 'helper'
3
- =begin
4
- class TestUnitHosting < Test::Unit::TestCase
5
- context "Agent" do
6
- should "access" do
7
- agent = UnitHosting::Agent.new
8
- agent.getr("/")
9
- assert(agent.page_body =~ /ユニットホスティング/,"to top page")
10
- end
11
- end
12
- end
13
- =end