Sha256: 3b073c1354f0a43ad5f6da666ee28ea9055ab43e646e1be091b4ded262c4d856

Contents?: true

Size: 440 Bytes

Versions: 11

Compression:

Stored size: 440 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;
		}
	};

	DEFINE_TEST_GROUP(StandardApplicationPoolTest);

	#define USE_TEMPLATE
	#include "ApplicationPoolTest.cpp"
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
passenger-1.0.1 test/StandardApplicationPoolTest.cpp
passenger-1.0.3 test/StandardApplicationPoolTest.cpp
passenger-1.0.2 test/StandardApplicationPoolTest.cpp
passenger-1.0.5 test/StandardApplicationPoolTest.cpp
passenger-1.0.4 test/StandardApplicationPoolTest.cpp
passenger-2.0.1 test/StandardApplicationPoolTest.cpp
passenger-2.0.3 test/StandardApplicationPoolTest.cpp
passenger-2.0.2 test/StandardApplicationPoolTest.cpp
passenger-2.0.4 test/StandardApplicationPoolTest.cpp
passenger-2.0.6 test/StandardApplicationPoolTest.cpp
passenger-2.0.5 test/StandardApplicationPoolTest.cpp