Sha256: 88af858680363de0ce7caf5c2ffb2d3f9f079e150c2963cf31c12c932b075afe

Contents?: true

Size: 506 Bytes

Versions: 5

Compression:

Stored size: 506 Bytes

Contents

#include "tut.h"
#include "StandardApplicationPool.h"
#include "Utils.h"

using namespace Passenger;

namespace tut {
	struct StandardApplicationPoolTest {
		ApplicationPoolPtr pool, pool2;
		
		StandardApplicationPoolTest() {
			pool = ptr(new StandardApplicationPool("../bin/passenger-spawn-server"));
			pool2 = pool;
		}
		
		ApplicationPoolPtr newPoolConnection() {
			return pool;
		}
	};

	DEFINE_TEST_GROUP(StandardApplicationPoolTest);

	#define USE_TEMPLATE
	#include "ApplicationPoolTest.cpp"
}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
rockdog-passenger-0.0.1 test/StandardApplicationPoolTest.cpp
passenger-2.1.2 test/StandardApplicationPoolTest.cpp
passenger-2.1.3 test/StandardApplicationPoolTest.cpp
passenger-2.2.0 test/StandardApplicationPoolTest.cpp
passenger-2.2.1 test/StandardApplicationPoolTest.cpp