Lines Matching refs:f
6 local f = {
10 local r, err = n.addfile(f, false)
32 f.path="/tmp/testnuage"
33 local str = addfile_and_getres(f)
34 if str ~= f.content then
39 f.content = "test"
41 str = addfile_and_getres(f)
42 if str ~= f.content then
47 f.content = "more"
48 f.append = true
50 str = addfile_and_getres(f)
51 if str ~= "test" .. f.content then
56 f.content = "YmxhCg=="
57 f.encoding = "base64"
58 f.append = false
60 str = addfile_and_getres(f)
66 f.encoding = "b64"
67 str = addfile_and_getres(f)