Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for company_name (0.07 sec)

  1. tests/test_union_forms.py

            "/form-union/", data={"company_name": "Tech Corp", "industry": "Technology"}
        )
        assert response.status_code == 200, response.text
        assert response.json() == {
            "received": {"company_name": "Tech Corp", "industry": "Technology"}
        }
    
    
    def test_invalid_form_data():
        response = client.post(
            "/form-union/",
            data={"name": "John", "company_name": "Tech Corp"},
        )
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. schema/schema_test.go

    		{Name: "ID", DBName: "company_id", BindNames: []string{"Base", "ID"}, DataType: schema.Int, Size: 64, TagSettings: map[string]string{"EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},
    		{Name: "Name", DBName: "company_name", BindNames: []string{"Base", "Name"}, DataType: schema.String, TagSettings: map[string]string{"EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Thu Aug 28 02:57:17 UTC 2025
    - 13.3K bytes
    - Viewed (0)
Back to top