Root responses cache directory

Property definitions

github $ MockGithubAPI :: responses_dir
	# Root responses cache directory
	var responses_dir: String is lazy do
		var path = "NIT_TESTING_PATH".environ.dirname / "mock"
		path.mkdir
		return path
	end
lib/github/tests/test_api.nit:91,2--96,4