Redefine this method to implement your test scenario.

Property definitions

popcorn $ TestPopcorn :: client_test
	# Redefine this method to implement your test scenario.
	fun client_test do end
lib/popcorn/pop_tests.nit:154,2--155,23

popcorn $ TestExampleAngular :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/counter"
		system "curl -s {host}:{port}/counter -X POST"
		system "curl -s {host}:{port}/counter"
		system "curl -s {host}:{port}/not_found" # handled by angular controller
	end
lib/popcorn/examples/angular/tests/test_example_angular.nit:26,2--31,4

popcorn $ TestExampleAdvancedLogger :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
		system "curl -s {host}:{port}/about"
	end
lib/popcorn/examples/middlewares/tests/test_example_advanced_logger.nit:26,2--29,4

popcorn $ TestExampleHtmlErrorHandler :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
		system "curl -s {host}:{port}/about"
	end
lib/popcorn/examples/middlewares/tests/test_example_html_error_handler.nit:26,2--29,4

popcorn $ TestExampleSimpleErrorHandler :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
		system "curl -s {host}:{port}/about"
	end
lib/popcorn/examples/middlewares/tests/test_example_simple_error_handler.nit:26,2--29,4

popcorn $ TestExampleSimpleLogger :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
		system "curl -s {host}:{port}/about"
	end
lib/popcorn/examples/middlewares/tests/test_example_simple_logger.nit:26,2--29,4

popcorn $ TestExampleTemplate :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
	end
lib/popcorn/examples/templates/tests/test_example_templates.nit:26,2--28,4

popcorn $ TestExampleTemplateString :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
	end
lib/popcorn/examples/templates/tests/test_example_templates.nit:41,2--43,4

popcorn $ TestExampleTemplateFile :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
	end
lib/popcorn/examples/templates/tests/test_example_templates.nit:56,2--58,4

popcorn $ TestExampleTemplatePug :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
	end
lib/popcorn/examples/templates/tests/test_example_templates.nit:73,2--75,4

popcorn $ TestExampleTemplatePugFile :: client_test
	redef fun client_test do
		system "curl -s {host}:{port}/"
	end
lib/popcorn/examples/templates/tests/test_example_templates.nit:88,2--90,4