blob: 73bf55a442faf8e949b9d2d77703eaf1924071ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# vi:ft=
use Test::Nginx::Socket::Lua;
repeat_each(2);
plan tests => repeat_each() * (3 * blocks());
our $HttpConfig = <<'_EOC_';
lua_package_path 'lib/?.lua;;';
lua_package_cpath 'lib/?.so;;';
_EOC_
no_long_string();
run_tests();
__DATA__
=== TEST 1: atoi
--- http_config eval: $::HttpConfig
--- config
location /t {
content_by_lua '
local str = require "resty.string"
ngx.say(1 + str.atoi("32"))
';
}
--- request
GET /t
--- response_body
33
--- no_error_log
[error]
|